.feed-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    padding: 20px;
    background-color: #f5f5f5;
    gap: 20px;
}

.pet-display {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 500px;
    margin-top: 20px;
}

.pet-layers {
    position: relative;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.9);  /* Semi-transparent white */
    border-radius: 20px;  /* Rounded corners */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);  /* Subtle shadow */
    padding: 15px;  /* Inner spacing */
}

.pet-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.food-options {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;  /* Increased gap */
    margin-bottom: 25px;
    transition: var(--transition)
}

.food-option:hover {
    transform: translateY(-2px);
}

.food-option {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.food-option input[type="radio"] {
    display: none;
}

.food-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.food-option:hover label {
    transform: translateY(-1.5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(74, 111, 165, 0.3); /* Light blue border */
}

.food-option input[type="radio"]:checked + label {
    background-color: rgba(74, 111, 165, 0.2);
    transform: scale(1.05);
}

.food-option img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 5px;
}

.confirm-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #4a6fa5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.confirm-btn:hover {
    background-color: #3a5a8f;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .food-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pet-layers {
        width: 250px;
        height: 250px;
    }
}